home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Outils / Adobe-Air / adobe-air_13.exe / [0] / setup.swf / scripts / mx / events / ScrollEvent.as < prev    next >
Text File  |  2014-03-27  |  1KB  |  39 lines

  1. package mx.events
  2. {
  3.    import flash.events.Event;
  4.    import mx.core.mx_internal;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class ScrollEvent extends Event
  9.    {
  10.       
  11.       mx_internal static const VERSION:String = "3.0.0.0";
  12.       
  13.       public static const SCROLL:String = "scroll";
  14.        
  15.       
  16.       public var detail:String;
  17.       
  18.       public var delta:Number;
  19.       
  20.       public var position:Number;
  21.       
  22.       public var direction:String;
  23.       
  24.       public function ScrollEvent(param1:String, param2:Boolean = false, param3:Boolean = false, param4:String = null, param5:Number = NaN, param6:String = null, param7:Number = NaN)
  25.       {
  26.          super(param1,param2,param3);
  27.          this.detail = param4;
  28.          this.position = param5;
  29.          this.direction = param6;
  30.          this.delta = param7;
  31.       }
  32.       
  33.       override public function clone() : Event
  34.       {
  35.          return new ScrollEvent(type,bubbles,cancelable,detail,position,direction,delta);
  36.       }
  37.    }
  38. }
  39.